home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / circuits / irsim-ca.2 / irsim-ca / irsim-cap-9.2 / src / irsim / incstub.c < prev    next >
C/C++ Source or Header  |  1993-01-15  |  2KB  |  46 lines

  1. /* 
  2.  *     ********************************************************************* 
  3.  *     * Copyright (C) 1988, 1990 Stanford University.                     * 
  4.  *     * Permission to use, copy, modify, and distribute this              * 
  5.  *     * software and its documentation for any purpose and without        * 
  6.  *     * fee is hereby granted, provided that the above copyright          * 
  7.  *     * notice appear in all copies.  Stanford University                 * 
  8.  *     * makes no representations about the suitability of this            * 
  9.  *     * software for any purpose.  It is provided "as is" without         * 
  10.  *     * express or implied warranty.  Export of this software outside     * 
  11.  *     * of the United States of America may require an export license.    * 
  12.  *     ********************************************************************* 
  13.  */
  14.  
  15. #include <stdio.h>
  16. #include "defs.h"
  17. #include "net.h"
  18.  
  19. public    long    INC_RES = 5;
  20. public    nptr    inc_cause = (nptr) 1;
  21. public    long    nevals = 0;
  22. public    long    i_nevals = 0;
  23. public    long    nreval_ev = 0;
  24. public    long    npunted_ev = 0;
  25. public    long    nstimuli_ev = 0;
  26. public    long    ncheckpt_ev = 0;
  27. public    long    ndelaychk_ev = 0;
  28. public    long    ndelay_ev = 0;
  29.  
  30. public void incsim( ch_list )
  31.   nptr  ch_list;
  32.   {
  33.     lprintf( stderr, "Incremental simulation not supported in this version\n" );
  34.   }
  35.  
  36. #ifdef FAULT_SIM
  37.  
  38. public    int    fault_mode = FALSE;
  39.  
  40. public void faultsim( n )
  41.   nptr  n;
  42.   {
  43.     lprintf( stderr, "Fault simulation not supported in this version\n" );
  44.   }
  45. #endif FAULT_SIM
  46.